home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue45
/
Clinic
/
NewHints.DPR
< prev
next >
Wrap
Text File
|
2000-11-02
|
220b
|
16 lines
program NewHints;
uses
Forms,
NewHntsU in 'NEWHNTSU.PAS' {Form1};
{$R *.RES}
begin
{$ifdef Win32}
Application.Initialize;
{$endif}
Application.CreateForm(TForm1, Form1);
Application.Run;
end.